home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Modules / protos / structmodule_protos1.h < prev    next >
Text File  |  1998-01-25  |  559b  |  12 lines

  1.  
  2. /* structmodule.c  (1) */
  3. static int get_long ( PyObject *v , long *p );
  4. static int get_ulong ( PyObject *v , unsigned long *p );
  5. static int pack_float ( double x , char *p , int incr );
  6. static int pack_double ( double x , char *p , int incr );
  7. static PyObject *unpack_float ( char *p , int incr );
  8. static PyObject *unpack_double ( char *p , int incr );
  9. static PyObject *struct_calcsize ( PyObject *self , PyObject *args );
  10. static PyObject *struct_pack ( PyObject *self , PyObject *args );
  11. static PyObject *struct_unpack ( PyObject *self , PyObject *args );
  12.